en este apartado te mostrare código "HTML"
<html>
<head>
</head>
<body>
<header>
</header>
<nav>
</nav>
<main>
<section>
</section>
</main>
<footer>
</footer>
</body>
</html>
En este otro apartado te mostrares código "CSS">
.reto div{
min-height: 600px;
display: flex;
flex-direction: column;
justify-content:start;
align-items: center;
}
En este apartado veremos código "JS"
var slider = document.getElementById("myRange");
var output = document.getElementById("demo");
output.innerHTML = slider.value; // Muestra el valor inicial
slider.oninput = function() {
output.innerHTML = this.value;
}